home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gwu / gwadahlp.h < prev    next >
C/C++ Source or Header  |  1996-01-30  |  779b  |  45 lines

  1. /*
  2.    HELP ENGINE PARA GWADA
  3.  
  4.    Módulo GWADAHLP.H
  5.    Estruturas de dados usadas e variáveis globais
  6.  
  7.    Trabalho de conclusao
  8.    Bacharelado em Informática
  9.  
  10.    Ulrich Peters
  11.    Rafael Presotto
  12.    Jerry Dressler
  13. */
  14.  
  15. typedef struct tree
  16. {
  17.  int        number;
  18.  int        lines;
  19.  size_t        size;
  20.  unsigned long    offset;
  21.  struct tree     *prox;
  22. };
  23.  
  24. typedef struct desvio
  25. {
  26.  int        screen_Xi;
  27.  int        screen_Xf;
  28.  int        screen_Y;
  29.  int        number;
  30.  struct desvio  *prox;
  31. };
  32.  
  33. typedef struct branco
  34. {
  35.  int        screen_Xi;
  36.  int        screen_Xf;
  37.  int        screen_Y;
  38.  struct branco  *prox;
  39. };
  40.  
  41. struct tree    *raiz, *nodo_atual, *nodo_antes;
  42. struct desvio    *draiz, *desvio_atual, *desvio_antes;
  43. struct branco    *braiz, *branco_atual, *branco_antes;
  44. static char    header[] = "GWADA Help File";
  45.